home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / WINDOWS / LENGINE.ZIP / APPMAIN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-17  |  329 b   |  21 lines

  1. #include <stdlib.h>
  2.  
  3. #define LEFT 0
  4. #define RIGHT 1
  5. #define UP 2
  6. #define DOWN 3
  7. #define SPEEDUP 4
  8. #define SPEEDDOWN 5
  9.  
  10. typedef struct
  11. {
  12.     HINSTANCE     hInstance;
  13.     HINSTANCE     hPrevInst;
  14.     int            cmdShow;
  15.  
  16. } WINAPP;
  17.  
  18. int Heartbeat();
  19. int SetupData();
  20. LRESULT CALLBACK _export WndProc(HWND, UINT, WPARAM, LPARAM);
  21.